/*
 
Theme name: Bestefa
 
Theme url: 
 
Description: Tema sviluppato da Ettore Borsa
 
Version: 1.0
 
Author: Ettore Borsa
 
Author url: 

Tags: 
 
*/
html, body {
	height: 100%;
}
body {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #777777;
}
h1, h2 {
	
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.3;
	color: #111111;
}
img {
	max-width: 100%;
	height: auto;
}
a {
	color: #ab2524;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
a:hover, a:focus {
	color: #111111;
	text-decoration: none;
}
a:focus {
    outline: none;
}
strong {
	font-weight: 600;
}
.row-height {
	display: table;
    height: 100%;
    width: 100%;
	table-layout: fixed;
}
.col-height{
	display: table-cell;
    float: none;
    height: 100%;
    vertical-align: middle;
}
.height-100 {
    height: 100%;
}
.tratto, .tratto-c {
	padding-bottom: 10px;
	position: relative;
}
.tratto-c {
	text-align: center;
}
.tratto::before, .tratto-c::before  {
	position: absolute;
	content: "";
	height: 4px;
	width: 70px;
	bottom: 0;
	background-color: #ab2524;
}
.tratto::before {
	left: 0;
}
.tratto-c::before {
	left: 50%;
	margin-left: -35px;
}
.effetto-hover {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	background-color: rgba(171, 37, 36, 0.5);
	background-image: url('../images/icon-logo.png');
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transition: opacity .3s linear;
	-moz-transition: opacity .3s linear;
	-ms-transition: opacity .3s linear;
	-o-transition: opacity .3s linear;
	transition: opacity .3s linear;
}
/**********************************HEADER*********************************/
#header {
	/*text-transform: uppercase;*/
	font-weight: 600;
	font-size: 14px;
	line-height: 1;	
}
.header {
	display: table;
	height: 100%;
	position: relative;
}
.lingua {
	float: right;
	margin-left: 4px;
	position: relative;
}
.lingua ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.lingua ul li a {
	background-color: #f7f7f7;
	display: inline-block;
	position: relative;
	color: #ab2524;
	-webkit-transition: color 0.3s ease 0s;
	-moz-transition: color 0.3s ease 0s;
	-ms-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}
.lingua ul li a:hover {
	color: #111111;
}


/******************MENU******************/

.nav-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (min-width: 768px) { /* tutto quello che sta sopra i 768px*/ 

	.nav-menu-toggle {
		display: none;
	}
	
	.nav-menu {
		display: block!important;
		float: right;
	}
	.nav-menu > ul {
		float: right;
	}
	.nav-menu > ul > li {
		float: left;
		position: relative;
		margin-right: 4px;
	}
	.nav-menu > ul > li:last-child {
		margin-right: 0;
	}
        .nav-menu > ul > li::before {
            position: absolute;
            content: "";
            top: 0;
            right: 0;
            left: 0;
            height: 0;
            background-color: #ab2524;
            -webkit-transition: height 0.4s ease 0s;
            -moz-transition: height 0.4s ease 0s;
            -ms-transition: height 0.4s ease 0s;
            -o-transition: height 0.4s ease 0s;
            transition: height 0.4s ease 0s;
        }
	.nav-menu a {
		display: inline-block;	
	}
	.nav-menu > ul > li > a {
		color: #111111;
		position: relative;
		-webkit-transition: color 0.3s ease 0s;
		-moz-transition: color 0.3s ease 0s;
		-ms-transition: color 0.3s ease 0s;
		-o-transition: color 0.3s ease 0s;
		transition: color 0.3s ease 0s;
	}
	.nav-menu > ul > .menu-item-has-children > a::after {
		content: "\f107";
		font-family: fontawesome;
		position: absolute;
		bottom: 8px;
		left: 0;
		right: 0;
		text-align: center;
	}
	.nav-menu > ul > li:hover::before {
		height: 100%;
	}
	.nav-menu > ul > li:hover > a {
		color: #ffffff;
	}
	.nav-menu > ul > li.current-menu-item::before,
	.nav-menu > ul > li.current-page-ancestor::before,
	.nav-menu > ul > li.current-menu-parent::before {
		height: 100%;
	}
	.nav-menu > ul > li.current-menu-item > a,
	.nav-menu > ul > li.current-page-ancestor > a,
	.nav-menu > ul > li.current-menu-parent > a	{
		color: #ffffff;
	}

	/* drop-down menu */
	.nav-menu > ul ul {
		background-color: rgba(0, 0, 0, 0.8);
		width: 180px;
		position: absolute;
		padding: 7px 0;
		z-index: 150;
		opacity: 0;
		top: 120%;
		left: -9999px;
		-webkit-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
		-moz-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
		-ms-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
		-o-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
	}
        .nav-menu > ul > li:hover > ul {
            opacity: 1;
            top: 100%;
            left: 0;
        }
	.sub-menu li a {
		font-size: 14px;
		line-height: 1.3;
		color: #ffffff;
		width: 100%;
	}
        .sub-menu li a:hover {
            color: #ab2524;
        }
    .sub-menu .current-page-ancestor a {
        color: #ab2524;
    }
    .sub-menu li.current-menu-item > a {
        color: #ab2524;
    }
	.nav-menu > ul > .menu-item-has-children .menu-item-has-children {
		position: relative;
	}
	.nav-menu > ul > .menu-item-has-children .menu-item-has-children > a::after {
		content: "\f105";
		font-family: fontawesome;
		position: absolute;
		right: 20px;
	}

	/* deep down */
    .nav-menu > ul ul ul {
        display: block;
        padding: 0;
        top: 0;
        left: 200%;
        opacity: 0;
        -webkit-transition: opacity 0.3s ease-in-out, left 0.3s ease-in-out;
        -moz-transition: opacity 0.3s ease-in-out, left 0.3s ease-in-out;
        -ms-transition: opacity 0.3s ease-in-out, left 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out, left 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out, left 0.3s ease-in-out;
    }
	.nav-menu > ul ul > li:hover > ul  { 
		opacity: 1; 
		left: 100%;
	}
	
}


@media screen and (max-width: 767px) { /* tutto quello che sta sotto i 767px*/ 
	
	.nav-menu-toggle {
		display: block;
	}
	.nav-menu {
		display: none;
	}
	
	.nav-menu-toggle {
		cursor: pointer;	
		float: right;
		height: 30px;
		position: relative;
		width: 30px;
		margin: 0 0 15px 0;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	.nav-menu-toggle span {
		background-color: #ab2524;
		display: block;
		height: 2px;
		left: 0;
		margin-top: -1px;
		position: absolute;
		top: 50%;
		width: 100%;
		-webkit-transition: all 0.75s ease;
		-moz-transition: all 0.75s ease;
		-ms-transition: all 0.75s ease;
		-o-transition: all 0.75s ease;
		transition: all 0.75s ease;
	}
	.nav-menu-toggle span::before, .nav-menu-toggle span::after {
		background-color: #ab2524;
		content: "";
		display: block;
		height: 2px;
		left: 0;
		position: absolute;
		width: 100%;
		-webkit-transition: all 0.75s ease;
		-moz-transition: all 0.75s ease;
		-ms-transition: all 0.75s ease;
		-o-transition: all 0.75s ease;
		transition: all 0.75s ease;
	}
	.nav-menu-toggle span::before {
		top: -7px;
	}
	.nav-menu-toggle span::after {
		bottom: -7px;
	}
	.nav-menu-toggle.active span {
		background-color: #111111;
	}
	.nav-menu-toggle.active span::before, .nav-menu-toggle.active span::after {
		background-color: #111111;
	}
	
	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: rgba(0, 0, 0, 0.8);
		z-index: 150;	
	}
	.nav-menu a {
		display: block;	
		padding: 10px;
		color: #ffffff;
		font-weight: normal;
	}
	.nav-menu a:hover {
		color: #ab2524;	
	}
	.nav-menu > ul {
		padding: 5px 15px;
	}
	.nav-menu > ul > li > a {
		font-size: 11px;
	}
	.nav-menu > ul > li.current-menu-item > a,
	.nav-menu > ul > li.current-menu-parent > a	{
		color: #ab2524;	
		background-color: rgba(0, 0, 0, 0.4);
	}
	.nav-menu > ul > li.current-page-ancestor > a {
		color: #ab2524;
	}
	
	
	.nav-menu  > ul ul {
		padding: 0 0 0 30px;
	}
	.sub-menu li a {
		font-size: 10px;
	}	
	.sub-menu .current-page-ancestor a {
		color: #ab2524;
	}
	.sub-menu li.current-menu-item > a {
		color: #ab2524;
		background-color: rgba(0, 0, 0, 0.4);
	}
	
}


/****************************************/


/*************************************************************************/



/***********************************HOME**********************************/
#slideshow .rslides_nav {	
	height: 30px;
	width: 30px;
	padding: 0;
	font-family: fontawesome;
	background-color: #ab2524;
	color: #ab2524;
	opacity: 1;
	text-align: center;
	line-height: 30px;
	font-size: 20px;	
	font-weight: normal;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
#slideshow .rslides_nav.prev {
	left: 10px;
}
#slideshow .rslides_nav.next {
	right: 10px;
}
#slideshow .rslides_nav:hover {	
	background-color: #111111;
	color: #111111;
}

#slideshow .rslides_nav.prev::before,
#slideshow .rslides_nav.next::before  {		
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	color: #ffffff;
}
#slideshow .rslides_nav.prev::before {
	content: "\f104";
}
#slideshow .rslides_nav.next::before {	
	content: "\f105";
}
#slideshow .metaslider .caption-wrap {
	top: 0;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.3);
	opacity: 1;
}
#slideshow .metaslider .caption-wrap .caption {
	position: absolute;
	width: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 30px;
	margin-top: -72px;
}
#slideshow .metaslider .caption-wrap .caption h2 {
	font-size: 50px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	margin: 0;
}
#slideshow .metaslider .caption-wrap .caption span {
	color: #ab2524;
}


.title-home {
	font-size: 24px;
    margin: 0 0 30px;
	text-transform: uppercase;
	font-weight: 600;
}

.intro-home-griglia {
    background-color: #f7f7f7;
    padding-bottom: 30px;
    /* TOGLIERE */
    /*display: none;*/
    /* TOGLIERE */
}
.intro-home-box  {
	margin-top: -155px;
}
.intro-home-box a {
	color: #606060;
}
.intro-home-box-text {
	height: 155px;
	display: table;
	width: 100%;
	background-color: rgba(255, 255, 255, 1);
	position: relative;
	
}
    .intro-home-box-text::before {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        left: 0;
        height: 0;
        background-color: #ab2524;
        -webkit-transition: height 0.4s ease 0s;
        -moz-transition: height 0.4s ease 0s;
        -ms-transition: height 0.4s ease 0s;
        -o-transition: height 0.4s ease 0s;
        transition: height 0.4s ease 0s;
    }
.intro-home-box:hover .intro-home-box-text::before {
	height: 100%;
}

.intro-home-box-text-content {
	display: table-cell;
	vertical-align: middle;
	position: relative;
	padding: 25px 20px 20px 20px;
	font-size: 13px;
}
.intro-home-box-text-content h3 {
	line-height: 1;
	font-size: 22px;
	margin: 0 0 15px 0;
	text-transform: uppercase;
}
.intro-home-box-text-content p {
	margin: 0;
}
.intro-home-box a, 
.intro-home-box .intro-home-box-text-content h3 {
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
.intro-home-box:hover a, 
.intro-home-box:hover .intro-home-box-text-content h3 {
	color: #ffffff;
}

.intro-home-text {
    padding: 80px 0;
    /* TOGLIERE */
    display: none;
    /* TOGLIERE */
}
.intro-home-text .title-home {
	text-transform: none;
	font-weight: 400;
}
.intro-home-text-top {
	overflow: hidden;
}

.intro-home-text-image {
	overflow: hidden;
	margin: 20px 0 0 0;
	text-align: center;
}
.intro-home-text-image img {
	width: 100%;
}


.intro-home-text-margin {
	overflow: hidden;
}
.intro-home-text-margin > div {
	margin-top: 40px;
	margin-bottom: 40px;
	border-top: 1px solid #e9e9e9;
}

.intro-home-text-bottom-sx,
.intro-home-text-bottom-dx {
	vertical-align: top;
}
.intro-home-text-bottom-dx {
	border-left: 1px solid #e9e9e9;
	text-align: center;
}
.intro-home-text-bottom-dx img {
	margin-top: 30px;
}


#prodotti-home {
    padding: 80px 0;
    background-color: #222222;
    background-image: url('../images/bg-prodotti.jpg');
    position: relative;
    /* TOGLIERE */
    display: none;
    /* TOGLIERE */
}
#prodotti-home::before {	
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
}

#prodotti-home .title-home {
	color: #ffffff;
}
.prodotti-home-overlay {
/*	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);*/
}
.prodotto-box {
	padding: 15px;
}
.prodotto-box-image {
	position: relative;
}
.prodotto-box-image .effetto-hover {
	background-color: rgba(0, 0, 0, 0.5);
	background-image: url('../images/icon-logo.png');	
}
.prodotto-box-image:hover .effetto-hover {
	opacity: 1;
}
.prodotto-box img{
	width: 100%;
}
.prodotto-box-title {	
	background-color: rgba(0, 0, 0, 0.6);	
	background-color: #fff;	
	
	height: 60px;
	padding: 0 40px;
	text-align: center;
	display: table;
	width: 100%;
	
	border: 1px solid rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.prodotto-box-title h2 {
	display: table-cell;
	vertical-align: middle;
	margin: 0;
	font-size: 18px;
	text-transform: none;
	font-weight: 400;
}
.prodotto-box-title a {
	color: #ffffff;
	color: #111111;
}
.prodotto-box-title a:hover {
	color: #ab2524;
}
#owl-carousel-prodotti.owl-theme .owl-controls  {
	position: absolute;
	bottom: -30px;
	left: 0;
	right: 0;
	text-align: center;
}
#owl-carousel-prodotti.owl-theme .owl-controls .owl-buttons div {
	height: 30px;
	width: 30px;
	font-family: fontawesome;
	padding: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background-color: #ab2524;
	opacity: 1;
	text-align: center;
	line-height: 30px;
	font-size: 20px;	
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
#owl-carousel-prodotti.owl-theme .owl-controls .owl-buttons div:hover {
	background-color: #111111;
}
#owl-carousel-prodotti.owl-theme .owl-controls .owl-buttons .owl-prev {	
	left: -10px;
}
#owl-carousel-prodotti.owl-theme .owl-controls .owl-buttons .owl-next {
	right: -10px;
}
#owl-carousel-prodotti .owl-prev::before {
	content: "\f104";
}
#owl-carousel-prodotti .owl-next::before {
	content: "\f105";
}



#news-home {
	padding: 80px 0;
}
.news-box {
	padding: 30px;
	background-color: #f7f7f7;
	border: 1px solid #e9e9e9;
}
.news-box-image > a {
	height: 100%;	
	display: block;
}
.news-box-image-content {
	position: relative;
	height: 100%;	
	background-position: center center;
	background-repeat: no-repeat;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	min-height: 250px;
}
.news-box-image-content:hover .effetto-hover {
	opacity: 1;
}
.news-box-text-content {
	height: 100%;
}
.news-box-text-content > div {
	background-color: #ffffff;
	height: 100%;
	padding: 40px 30px;
}
.news-box-text-content h3 {
	margin: 0 0 20px 0;
}

.news-box .owl-theme .owl-controls {
	margin: 0;
}
.news-box .owl-theme .owl-controls .owl-buttons div {
	position: absolute;
	top: 50%;
	margin-top: -15px;
	height: 30px;
	width: 30px;
	font-family: fontawesome;
	padding: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background-color: #ab2524;
	opacity: 1;
	text-align: center;
	line-height: 30px;
	font-size: 20px;	
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
.news-box .owl-theme .owl-controls .owl-buttons div:hover {
	background-color: #111111;
}
.news-box .owl-theme .owl-controls .owl-buttons .owl-prev {	
	left: -10px;
}
.news-box .owl-theme .owl-controls .owl-buttons .owl-next {
	right: -10px;
}
.news-box .owl-prev::before {
	content: "\f104";
}
.news-box .owl-next::before {
	content: "\f105";
}
/********************************FINE HOME********************************/




/**********************************PAGINE*********************************/

/***************TITLE-PAGE***************/
#title-page {	
    padding: 50px 0;
	text-align: center;
	background-image: url('../images/bg-prodotti.jpg');
	position: relative;
}
#title-page::before {	
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
}
h1.title-page {
	color: #fff;
	margin: 0;
	font-size: 30px;
	font-weight: 600;
	text-transform: uppercase;
}
/****************************************/

/************FULL-IMAGE-PAGE*************/
#full-image-page {	
    height: 500px;
	background-position: center center;
	background-repeat: no-repeat;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
/*#header-page {
    height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
}*/
/****************************************/
#page {
    padding: 80px 0;
}

.page-prodotti-content {
	overflow: hidden;
}
.page-prodotti-content .prodotto-box-image {
	border: 1px solid #e9e9e9;
	border-bottom: none;
}
.page-prodotti-content .prodotto-box-title {
	background-color: #f7f7f7;
	border: 1px solid #e9e9e9;
}
.page-prodotti-content .prodotto-box-title a {	
	color: #111111;
}
.page-prodotti-content .prodotto-box-title a:hover {
	color: #ab2524;
}
   

/************SUBPAGE-PRODOTTI************/
#page-sub-prodotti {
	padding: 80px 0;
}
.left-sidebar {
	border-right: 1px solid #e9e9e9;
	padding-right: 30px;
}
.left-sidebar h3 {
	color: #ab2524;
}
.left-sidebar .left-sidebar-box {
	margin-bottom: 50px;
}
.left-sidebar .left-sidebar-box ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.left-sidebar .left-sidebar-box ul li {
	margin-bottom: 20px;
}
.left-sidebar .left-sidebar-box ul li a {
	border: 1px solid #e9e9e9;
	padding: 10px 15px;
	display: inline-block;
	color: #777777;
	/*text-transform: uppercase;*/
	font-weight: bold;
}
.left-sidebar .left-sidebar-box ul li a:hover,
.left-sidebar .left-sidebar-box ul li a:focus {
	color: #ab2524;
	background-color: #f7f7f7;
}


.content-servizi .col-sm-6:first-child {
	border-right: 1px solid #e9e9e9;
}
.content-servizi .col-sm-6 .box-servizi:nth-child(2) {
	border-top: 1px solid #e9e9e9;
	padding-top: 25px;
	margin-top: 25px;
}
.content-servizi .box-servizi {
	padding: 0 30px;
}
.content-servizi .box-servizi h3 {
	margin: 0 0 30px 0;
}
.content-servizi .box-servizi img {
	margin: 0 0 15px 0;
}

/****************************************/


/*****************CONTATTI***************/
.page-contatti-content {
	padding: 80px 0;
}
.maps {
	height: 400px;
    width: 100%;
	position: relative;
}
.maps iframe {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100% !important;
}
.maps .maps-overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.page-contatti-content h3 {
    color: #ab2524;
    margin: 0 0 30px;
}
.page-contatti-content .info-email {
	border-bottom: 1px solid #e9e9e9;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.page-contatti-content .info > div {
    border-bottom: 1px solid #e9e9e9;
	padding-bottom: 25px;
	margin-bottom: 25px;
}
.page-contatti-content .info > div:last-child {
    border-bottom: none;
	padding-bottom: 25px;
	margin-bottom: 25px;
}
.page-contatti-content .info i {
    float: left;
	color: #ab2524;
	font-size: 18px;
	line-height: 1.3;
}
.page-contatti-content .info span {
	margin-left: 25px;
	display: block;
}


.wpcf7-form .row  > div {
	margin-bottom: 20px;
}
.form input, .form button, .form textarea {
    width: 100%;
}
.form input, .form textarea {	
	border: 1px solid #dddddd;
	line-height: normal;	
	padding: 8px 10px;
}
.form input::-moz-placeholder,
.form textarea::-moz-placeholder {
  color: #bbbbbb;
  opacity: 1;
}
.form input:-ms-input-placeholder,
.form textarea:-ms-input-placeholder {
  color: #bbbbbb;
}
.form input::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder {
  color: #bbbbbb;
}

.form .wpcf7-acceptance {
	width: auto;
	margin: 0 4px 0 0;		
}
.form .bottone {
    -webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
	padding: 10px;
	border: none;
	background-color: #ab2524;
	color: #ffffff;
	cursor: pointer;	
}
.form .bottone:hover {
	background-color: #111111;
	color: #ffffff;
}
.form .ajax-loader {
	display: none;
}
div.wpcf7-response-output {
    margin: 0 0 10px 0;
}

/***************************************/


/***************GALLERY-WP***************/
#gallery-4 .gallery-item {
	width: 33.3333%!important;
}
.gallery-item img {
	border: 1px solid #e9e9e9!important;
}
.gallery-icon {
	padding: 15px;
}


#page-sub-prodotti .gallery-item {
	margin: 0!important;
}
#page-sub-prodotti .gallery-icon {
	padding: 5px;
}
/****************************************/


/*******************************FINE PAGINE*******************************/


/**********************************ARCHIVE********************************/
#archive {
	padding: 80px 0;
}
#archive article {
	margin-bottom: 50px;
}
#archive article:last-child {
	margin-bottom: 0;
}

.nav-archivio .previous {
	float: right;
}
.nav-archivio .next {
	float: left;
}
/*************************************************************************/


/**********************************SINGLE*********************************/
#single {
	padding: 80px 0;
}
#single .single-post-title h3 {
	color: #ab2524;
	margin: 0 0 20px 0;
}
#single .single-post-img {
	margin-bottom: 30px;
}

.right-sidebar {
    border-left: 1px solid #e9e9e9;
	padding-left: 30px;
}
.right-sidebar h3 {
	color: #ab2524;
	margin: 0 0 20px 0;
}
.right-sidebar ul li {
    margin-bottom: 20px;
}
.right-sidebar ul li a {
    border: 1px solid #e9e9e9;
    color: #777777;
    display: inline-block;
    padding: 10px 15px;
}
.right-sidebar ul li a:hover, 
.right-sidebar ul li a:focus {
    background-color: #f7f7f7;
    color: #ab2524;
}

/*************************************************************************/


/******************************404/ATTACHMENT*****************************/
#no-page {
	padding: 80px 0;
}
#attachment {
	padding: 80px 0;
	text-align: center;
}
/*************************************************************************/


/**********************************FOOTER*********************************/

#footer {	
	background-image: url('../images/bg-footer.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	color: #ffffff;		
}
#footer a {
	color: #ffffff;
}
#footer a:hover,
#footer a:focus {
	color: #ab2524;
}
.footer-info {		
	text-align: center;
	padding-top: 60px;
}
.footer-logo, .footer-social {
	margin-bottom: 40px;
}
.footer-social .bottone-social {
	color: #ffffff;
	font-size: 18px;
	height: 40px;
    line-height: 40px;
    margin: 0 5px;
	text-decoration: none;
    text-align: center;
    width: 40px;
	background-color: #ab2524;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.footer-social .bottone-social:hover, 
.footer-social .bottone-social:focus {
	background-color: #000000;
	color: #ab2524;
}
.footer-info h3 {
	color: #ab2524;
	margin: 0 0 20px 0;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}
.footer-info p {
	margin: 0;
}
.footer-info-box {
	padding: 20px 55px;
	vertical-align: top;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.5);
}
.footer-copyright {
	font-size: 13px;
	line-height: 1.3;
	padding: 40px 0;
}
.cop, .privacy, .designed {
	display: table;
	margin: 0 auto 15px auto;
	text-align: center;
}
.cop > div {
	float: left;
}
.cop > div:nth-child(2) {
    border-left: 1px solid #ffffff;
    margin-left: 9px;
    padding-left: 10px;
}
.privacy ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.privacy li {
	float: left;
}
.privacy li:nth-child(2),
.privacy li:nth-child(3) {
    border-left: 1px solid #ffffff;
    margin-left: 9px;
    padding-left: 10px;
}
.designed {
	margin-bottom: 0;
}
.designed {
	margin-bottom: 0;
}
#footer .designed a {
	color: #ab2524;
}
/*************************************************************************/


/**********************************COOKIE*********************************/
.pea_cook_wrapper {
    -webkit-border-radius: 0!important;
	-moz-border-radius: 0!important;
	border-radius: 0!important;
	padding: 0!important;
	background-color: rgba(0, 0, 0, 0)!important;
}
.pea_cook_wrapper.pea_cook_bottomcenter {
    left: auto!important;
    margin: 0!important;
	width: 100%;
}
.pea_cook_wrapper p {
    font-family: "Raleway",sans-serif!important;
    font-size: 12px!important;
    font-weight: normal!important;
	padding: 15px 20px!important;
	background-color: rgba(0, 0, 0, 0.9)!important;
	display: table;
	margin: 0 auto!important;
}
.pea_cook_wrapper button.pea_cook_btn {
	font-family: "Raleway",sans-serif!important;
    font-weight: normal!important;
	text-shadow: none;
	padding: 8px;
	background-color: #ab2524;
    color: #ffffff;
	border: 2px solid #ab2524;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;	
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
	display: table;
	margin: 10px auto 0 auto;
}
.pea_cook_wrapper button.pea_cook_btn:hover,
.pea_cook_wrapper button.pea_cook_btn:focus {
	background-color: rgba(0, 0, 0, 0.2);
	text-decoration: none;
	color: #ffffff;
	border: 2px solid #ab2524;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.pea_cook_more_info_popover_inner {
	font-size: 12px;
	min-height: 0!important;
	padding: 20px 30px!important;
}
.pea_cook_more_info_popover_inner a {
	border-bottom: none!important;
}
.pea_cook_more_info_popover_inner a#pea_close {
    padding-top: 0;
	text-align: right;
	color: #ab2524!important;
}
.pea_cook_more_info_popover_inner a#pea_close:hover {
	color: #ffffff!important;
}
/*************************************************************************/


/*********************************PRELOADER*******************************/
#loading {
	background-color: #000000;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 20000;
	margin-top: 0px;
	top: 0px;
}
#loading-center {
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 100px;
	width: 200px;
	margin-top: -50px;
	margin-left: -100px;
}
#loading-center-absolute .icon-logo {
	height: 45px;
	width: 100%;
	background-image: url('../images/icon-logo.png');
	background-repeat: no-repeat;
	background-position: center center;
}
    #loading-center-absolute .loading {
        height: 55px;
        line-height: 55px;
        font-weight: 600;
        color: #ab2524;
        font-size: 22px;
        letter-spacing: 5px;
        text-align: center;
    }
/*************************************************************************/


@media (min-width: 1200px) { /* tutto quello che sta sopra i 1200px */ 


	.header {
		width: 100%;
		padding: 0 40px;
	}
	.logo {
		margin: 25px auto;
		float: left;
	}
	.lingua ul li a, 
	.nav-menu > ul > li > a {
		padding: 75px 18px 20px 18px;
	}
	.sub-menu li a {
		padding: 8px 18px;
	}
	.intro-home-text-bottom-dx img {
		margin-top: 0;
	}

}
@media screen and (max-width: 1199px) { /* tutto quello che sta sotto i 1199px*/ 


	.header {
		width: auto;
		margin: 0 auto;
	}
	.logo {
		float: none;
		margin: 15px auto;
		display: table;
	}
	
	


}



@media (min-width: 992px) and (max-width: 1199px) { /* tutto quello che sta sopra i 992px e sotto i 1199px */ 


	.lingua ul li a, 
	.nav-menu > ul > li > a {
		padding: 50px 18px 20px 18px;
	}
	.sub-menu li a {
		padding: 8px 18px;
	}
	
	.intro-home-box-text-content h3 {
		font-size: 18px;
		margin: 0 0 10px 0;
	}
	.intro-home-box-text-content {
		padding: 23px 16px 17px 16px;
		font-size: 12px;
	}


}


@media (min-width: 768px) and (max-width: 991px) { /* tutto quello che sta sopra i 768px e sotto i 991px */ 


	.lingua ul li a, 
	.nav-menu > ul > li > a {
		padding: 50px 12px 20px 12px;
		font-size: 11px;
	}
	.sub-menu li a {
		padding: 8px 12px;	
		font-size: 11px;
	}
	#slideshow .metaslider .caption-wrap .caption {
		margin-top: -35px;
	}
	#slideshow .metaslider .caption-wrap .caption h2 {
		font-size: 30px;
	}
	.intro-home-box {
		margin-top: -70px;
	}
	.intro-home-box-text-content {
		padding: 15px;
	}
	.intro-home-box-text {
		height: auto;
	}
	.intro-home-box-text-content h3 {
		font-size: 14px;
		margin: 0;
	}
	.intro-home-box-text-content p {
		display: none;
	}
	
	.intro-home-text-bottom-dx,
	.intro-home-text-bottom-sx {
		display: block;
	}
	.intro-home-text-bottom-dx {
		margin-top: 30px;
		border-left: none;
	}
	
	.news-box-text-content h3 {
		font-size: 20px;
		margin: 0 0 10px;
	}
	.news-box-text-content p {
		font-size: 13px;
	}
	
	#title-page {
		padding: 30px 0;
	}
	h1.title-page {
		font-size: 26px;
	}
	#full-image-page {	
		height: 300px;
	}
	
	
	.footer-info-box {
		padding: 20px 20px;
	}


}


@media (min-width: 768px) { /* tutto quello che sta sopra i 768px*/ 


	.footer-info .row-height {
		border: 1px solid rgba(255, 255, 255, 0.1);
	}


}


@media screen and (max-width: 767px) { /* tutto quello che sta sotto i 767px*/ 
	
	body {
		font-size: 13px;
	}
	.col-height {
		display: block
	}
	.auto-height > div {
		height: auto!important;
	}
	
	.header {
		width: 100%;
		padding: 0 15px;
	}	
	.lingua {
		float: left;
		margin: 0 0 15px 0;
		text-align: center;
	}
	.lingua a {
		height: 30px;
		width: 30px;
		line-height: 30px;
	}
	
	#slideshow .metaslider .caption-wrap .caption {
		margin-top: 0;
	}
	#slideshow .metaslider .caption-wrap .caption h2 {
		font-size: 20px;
	}
	.intro-home-griglia {
		display: none;
	}
	.intro-home-text, #prodotti-home, #news-home {
		padding: 50px 0;
	}
	.intro-home-text-margin > div {
		margin-bottom: 30px;
	}
	
	
	.intro-home-text-bottom-dx {
		margin-top: 30px;
		border-left: none;
	}
	
	
	#owl-carousel-prodotti .item,
	.page-prodotti-content .prodotto-box {
		width: 70%;
		margin: 0 auto;
	}
	
	.news-box .row-height {
		width: 70%;
		margin: 0 auto;
	}
	.news-box-text-content > div {
		padding: 20px;
	}
	.news-box .owl-theme .owl-controls .owl-buttons div {
		margin: 0;
		top: auto;
		bottom: -30px;
	}
	.news-box  .owl-theme .owl-controls .owl-buttons .owl-prev {
		left: 50%;
		margin-left: -35px;
	}
	.news-box  .owl-theme .owl-controls .owl-buttons .owl-next {
		right: 50%;
		margin-right: -35px;
	}
	
	
	#title-page {
		padding: 24px 0;
	}
	h1.title-page {
		font-size: 22px;
	}
	
	#full-image-page {	
		height: 250px;
	}
	
	
	#page, #page-sub-prodotti, #archive, #single, #no-page, #attachment, .page-contatti-content {
		padding: 50px 0;
	}
	
	.left-sidebar {
		border-right: none;
		padding-right: 0;
	}
	.left-sidebar h3 {
		text-align: center;
	}
	.left-sidebar-box ul {
		display: table;
		width: 100%;
	}
	
	.left-sidebar .left-sidebar-box ul li {
		width: 70%;
		margin: 0 auto 20px auto;
	}

	.left-sidebar .left-sidebar-box ul li a {
		display: block;
		padding: 10px 15px;
		text-align: center;
	}

	#page-sub-prodotti .gallery-item {
		width: 50% !important;
	}
	#page-sub-prodotti .gallery br {
		display: none !important;
	}
	
	.content-servizi .col-sm-6:first-child {
		border-right: none;
	}
	.content-servizi .col-sm-6:nth-child(2) .box-servizi:nth-child(1) {
		border-top: 1px solid #e9e9e9;
		margin-top: 25px;
		padding-top: 25px;
	}
	
	.right-sidebar {
		margin-top: 50px;
		border-left: none;
		padding-left: 0;
	}
	
	
	.gallery-item {
		width: 100% !important;
	}
	
	
	.footer-info-box {
		height: auto;
		padding: 20px 20px;
		margin: 0 auto 30px auto;
		width: 70%;
		border: 1px solid rgba(255, 255, 255, 0.1)
	}
	.footer-info .footer-info-box:last-child {
		margin-bottom: 0;
	}
	.cop > div {
		float: none;
		line-height: 1.8;
	}
	.cop > div:nth-child(2) {
		border-left: none;
		margin-left: 0;
		padding-left: 0;
	}
	
	.pea_cook_more_info_popover_inner {
		min-width: 90%!important;
	}
	
	
}

@media only screen and (max-width: 480px) {
	
	#slideshow .metaslider .caption-wrap .caption {
		display: none;
	}
	#owl-carousel-prodotti .item,
	.page-prodotti-content .prodotto-box {
		width: auto;
	}
	.prodotto-box-title h2 {
		font-size: 16px;
	}
	
	.news-box .row-height {
		width: 100%;
	}
	
	#full-image-page {	
		height: 200px;
	}
	
	#page-sub-prodotti .gallery-item {
		width: 100% !important;
	}
	.left-sidebar .left-sidebar-box ul li {
		width: 90%;
	}
	
	.news-box {
		padding: 15px;
	}
	.news-box-image-content {
		height: 180px;
	}
	.news-box-text-content h3 {
		font-size: 20px;
		margin: 0 0 10px;
	}
	
	
	.form .col-xs-6 {
		width: 100%;
	}
	
	.footer-info-box {
		width: 90%;
	}
	.privacy li {
		float: none;
	}
	.privacy li:nth-child(2),
	.privacy li:nth-child(3) {
		border-left: none;
		margin-left: 0;
		padding-left: 0;
	}
	

}


@media only screen and (max-width: 400px) {


}



@media only screen and (max-width: 350px) {


	.prodotto-box {
		padding-left: 0;
		padding-right: 0;
	} 
	.prodotto-box-title h2 {
		font-size: 14px;
	}
	#owl-carousel-prodotti .item {
		padding-left: 10px;
		padding-right: 10px;
	}
	


}


@media screen and (max-height: 400px) {


	
}

.container-video {
    position: relative;
    overflow: hidden;
    height: 700px;
}

.parallax-info {
    position: absolute;
    z-index: 50;
    width: 100%;
    height: 100%;
}

.mk-video-mask {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: url('../images/05.png') center center repeat;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /*padding-top: 30px;*/ height: 0;
    overflow: hidden;
}

    .video-container iframe,
    .video-container object,
    .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }